home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc / Sample Code / CALib & You… / Source / CASample / CAS_HelpBalloon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-07  |  758 b   |  42 lines  |  [TEXT/MPS ]

  1. /*
  2.  
  3.     File:        CAS_HelpBalloon.h
  4.  
  5.     Contains:    All balloon help related constants and public function prototypes
  6.                 for CAS_HelpBalloon.c.
  7.  
  8.     Written by:    David H Nelson
  9.  
  10.     Copyright © 1993-1995 ComponentWorks, All rights reserved.
  11.  
  12.     Change History (most recent first):
  13.  
  14.          <1>     2/14/95    SJF        first checked in
  15.          <1>     11/20/93    DHN        Created.
  16.  
  17. */
  18.  
  19. #if !defined(_H_CAS_HelpBalloon)
  20. #define _H_CAS_HelpBalloon
  21.  
  22.  
  23. //----------------------------------------------------------------------
  24. #define    kMainWindowHelpStrings    200
  25.  
  26.  
  27. #if defined(__cplusplus)
  28. extern "C"
  29. {
  30. #endif
  31.  
  32. //----------------------------------------------------------------------
  33. void hideBalloons( WindowPtr theWindow );
  34. void doBalloonHelp( WindowPtr theWindow );
  35.  
  36. #if defined(__cplusplus)
  37. }
  38. #endif
  39.  
  40.  
  41. #endif
  42.